home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / boot / YourFault.lha / YourFault / Install_YourFault < prev    next >
Text File  |  1995-06-15  |  877b  |  41 lines

  1. ; YourFault Install script for use with CBM installer.
  2. ; $VER: YourFault_Install 1.0
  3.  
  4. (set @default-dest "SYS:WBStartup")
  5.  
  6. ; copy yourfault to wbstartup
  7. (copylib
  8.     (prompt "Copying YourFault")
  9.     (confirm)
  10.     (help @copylib-help)
  11.     (source "YourFault")
  12.     (infos)
  13.     (noposition)
  14.     (dest @default-dest)
  15. )
  16.  
  17. ; Ask where to put the string file
  18. (set stringsdest
  19.     (askdir
  20.         (prompt 'Where will I install the example fault strings file to?')
  21.         (help @askdir-help)
  22.         (default 'S:')
  23.     )
  24. )
  25.  
  26. ; copy FaultStrings to stringsdest
  27. (copyfiles
  28.     (prompt "Copying FaultStrings (Remember to edit them later...:)")
  29.     (help @copylib-help)
  30.     (source "FaultStrings")
  31.     (dest stringsdest)
  32. )
  33.  
  34. (Tooltype
  35.     (dest "SYS:WBStartup/YourFault")
  36.     (settooltype "DONOTWAIT" "")
  37.     (settooltype "FROM" (Tackon stringsdest "FaultStrings"))
  38. )
  39.  
  40. ; and exit :)
  41. (exit "A reboot is required.\nI hope you find YourFault fun!\nLSK _\\\\//")